home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Parser / intrcheck.c < prev    next >
Text File  |  1995-12-21  |  4KB  |  185 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Check for interrupts */
  26.  
  27. #ifdef HAVE_CONFIG_H
  28. #include "config.h"
  29. #endif
  30.  
  31. #include "myproto.h"
  32. #include "intrcheck.h"
  33.  
  34.  
  35. #ifdef QUICKWIN
  36.  
  37. #include <io.h>
  38.  
  39. void
  40. initintr()
  41. {
  42. }
  43.  
  44. int
  45. intrcheck()
  46. {
  47.     _wyield();
  48. }
  49.  
  50. #define OK
  51.  
  52. #endif /* QUICKWIN */
  53.  
  54. #ifdef _M_IX86
  55. #include <io.h>
  56. #endif
  57.  
  58. #if defined(MSDOS) && !defined(QUICKWIN)
  59.  
  60. #ifdef __GNUC__
  61.  
  62. /* This is for DJGPP's GO32 extender.  I don't know how to trap
  63.  * control-C  (There's no API for ctrl-C, and I don't want to mess with
  64.  * the interrupt vectors.)  However, this DOES catch control-break.
  65.  * --Amrit
  66.  */
  67.  
  68. #include <go32.h>
  69.  
  70. void
  71. initintr()
  72. {
  73.     _go32_want_ctrl_break(1 /* TRUE */);
  74. }
  75.  
  76. int
  77. intrcheck()
  78. {
  79.     return _go32_was_ctrl_break_hit();
  80. }
  81.  
  82. #else /* !__GNUC__ */
  83.  
  84. /* This might work for MS-DOS (untested though): */
  85.  
  86. void
  87. initintr()
  88. {
  89. }
  90.  
  91. int
  92. intrcheck()
  93. {
  94.     int interrupted = 0;
  95.     while (kbhit()) {
  96.         if (getch() == '\003')
  97.             interrupted = 1;
  98.     }
  99.     return interrupted;
  100. }
  101.  
  102. #endif /* __GNUC__ */
  103.  
  104. #define OK
  105.  
  106. #endif /* MSDOS && !QUICKWIN */
  107.  
  108.  
  109. #ifdef macintosh
  110.  
  111. /* The Mac interrupt code has moved to macglue.c */
  112. #define OK
  113.  
  114. #endif /* macintosh */
  115.  
  116.  
  117. #ifndef OK
  118.  
  119. /* Default version -- for real operating systems and for Standard C */
  120.  
  121. #include <stdio.h>
  122. #include <string.h>
  123. #include <signal.h>
  124.  
  125. static int interrupted;
  126.  
  127. void
  128. PyErr_SetInterrupt()
  129. {
  130.     interrupted = 1;
  131. }
  132.  
  133. /* ARGSUSED */
  134. static RETSIGTYPE
  135. #ifdef _M_IX86
  136. intcatcher(int sig)    /* So the C compiler shuts up */
  137. #else /* _M_IX86 */
  138. intcatcher(sig)
  139.     int sig; /* Not used by required by interface */
  140. #endif /* _M_IX86 */
  141. {
  142.     extern void goaway PROTO((int));
  143.     static char message[] =
  144. "python: to interrupt a truly hanging Python program, interrupt once more.\n";
  145.     switch (interrupted++) {
  146.     case 0:
  147.         break;
  148.     case 1:
  149.         write(2, message, strlen(message));
  150.         break;
  151.     case 2:
  152.         interrupted = 0;
  153.         goaway(1);
  154.         break;
  155.     }
  156.     signal(SIGINT, intcatcher);
  157. }
  158.  
  159. void
  160. initintr()
  161. {
  162.     if (signal(SIGINT, SIG_IGN) != SIG_IGN)
  163.         signal(SIGINT, intcatcher);
  164. #ifdef HAVE_SIGINTERRUPT
  165.     /* This is for SunOS and other modern BSD derivatives.
  166.        It means that system calls (like read()) are not restarted
  167.        after an interrupt.  This is necessary so interrupting a
  168.        read() or readline() call works as expected.
  169.        XXX On old BSD (pure 4.2 or older) you may have to do this
  170.        differently! */
  171.     siginterrupt(SIGINT, 1);
  172. #endif /* HAVE_SIGINTERRUPT */
  173. }
  174.  
  175. int
  176. intrcheck()
  177. {
  178.     if (!interrupted)
  179.         return 0;
  180.     interrupted = 0;
  181.     return 1;
  182. }
  183.  
  184. #endif /* !OK */
  185.